home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / board / AmiGo.lha / AmiGo / makefile < prev    next >
Makefile  |  1989-12-12  |  806b  |  37 lines

  1. #
  2. # Makefile for AmiGo
  3. # Requires Make from fish disk #69
  4. #
  5. # Lattice 5.0.2
  6. # Note: Use of the optimizer seemed to result in an AmiGo binary that randomly
  7. # crashed.
  8.  
  9. OBJS     = amigo.o amigainterface.o menus.o goplayer.o killable.o \
  10.       goplayutils.o intrgraphics.o
  11.  
  12. # Go  Built into Ram:
  13. go :    go.h $(OBJS)
  14.     BLink lib:c.o $(OBJS) to Ram:AmiGo lib lib:lc.lib+lib:amiga.lib SC SD ND
  15.  
  16. amigo.o :    AmiGo.c go.h
  17.     lc -b0 -v -cuw amigo
  18.  
  19. amigainterface.o :    amigainterface.c go.h
  20.     lc -cf -b0 -v -cuw -O amigainterface
  21.  
  22. menus.o : menus.c
  23.     lc -b0 -v -cuw menus
  24.  
  25. goplayer.o :    goplayer.c goplayutils.h
  26.     lc -b0 -v -cuw  goplayer
  27.  
  28. killable.o :    killable.c
  29.     lc -b0 -v -cuw -O  killable
  30.  
  31. goplayutils.o :    goplayutils.c goplayutils.h
  32.     lc -b0 -v -cuw goplayutils
  33.  
  34. intrgraphics.o :     intrgraphics.c
  35.     lc -ad -b0 -v -cuw intrgraphics
  36.  
  37.